projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ffe2d21
)
* configure.in: Check for dynamic ptys (/dev/ptmx, /dev/pts/).
author
Gerd Moellmann
<gerd@gnu.org>
Wed, 27 Oct 1999 10:24:13 +0000
(10:24 +0000)
committer
Gerd Moellmann
<gerd@gnu.org>
Wed, 27 Oct 1999 10:24:13 +0000
(10:24 +0000)
configure.in
patch
|
blob
|
history
diff --git
a/configure.in
b/configure.in
index 96e29fe719b3680ed3589d58d5fdd4addd3d6295..9fcf264126fe7d7f973c31c3bbb3308ad038375a 100644
(file)
--- a/
configure.in
+++ b/
configure.in
@@
-1881,6
+1881,14
@@
if test -f /usr/lpp/X11/bin/smt.exp; then
AC_DEFINE(HAVE_AIX_SMT_EXP)
fi
+AC_MSG_CHECKING(whether system supports dynamic ptys)
+if test -d /dev/pts && ls -d /dev/ptmx > /dev/null 2>&1 ; then
+ AC_MSG_RESULT(yes)
+ AC_DEFINE(HAVE_DEV_PTMX)
+else
+ AC_MSG_RESULT(no)
+fi
+
# Set up the CFLAGS for real compilation, so we can substitute it.
CFLAGS="$REAL_CFLAGS"